home *** CD-ROM | disk | FTP | other *** search
- Tardis.debug = {clickMainNav:[],clickMainNavDebug:true,loadModules:[],loadModulesDebug:false,monitorTracking:[],monitorTrackingDebug:false,monitorLogSize:[],monitorLogSizeDebug:false,overlayTracking:[],overlayTrackingDebug:false,monitorSO:[],monitorSODebug:false,addProcess:function(strProcess, strTraceStatement)
- {
- if(this[strProcess + "Debug"] == undefined)
- {
- trace("!!! The process you are trying to monitor (" + strProcess + ") is not setup !!!");
- return undefined;
- }
- this[strProcess].push(strTraceStatement);
- },showProcessPath:function(strProcess)
- {
- if(this[strProcess + "Debug"])
- {
- trace("");
- trace("-----------------------------------------------------------------<");
- trace("Start of " + strProcess);
- trace("------------------------------------");
- var i = 0;
- while(i < this[strProcess].length)
- {
- trace(this[strProcess][i]);
- i++;
- }
- trace("------------------------------------");
- trace("End of " + strProcess);
- trace("----------------------------------------------------------------->");
- }
- },clearProcessPath:function(strProcess)
- {
- delete this[strProcess];
- this[strProcess] = new Array();
- }};
-